home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / stdio / rewind.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  103 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef rewind
  4.  
  5. void rewind(FILE *f)
  6. {
  7.     fseek(f,0L,SEEK_SET);
  8.     clearerr(f);
  9. }
  10.